.slider-container{
    width: 100vw;
    height: 100vh;
}

.slider{
    width: 100%;
    height: 100%;
    background-position: 60% 30%;
    position: absolute;
    background-size: cover;
    display: inline-block;
    z-index: -10;
}

.content-slider{
    display: flex;
    width: 90vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.name{
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0.1rem 0.1rem 0.2rem #000;
    color: var(--color-white);
    max-width: 50%;
}

.button {
    display: flex;
    width: 100vw;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    position: absolute;
}

button.prev, button.next {
    height: 3.75rem;
    background-color: var(--transparent-background);
    border: none;
    cursor: pointer;
    margin: 1rem;
}


.item {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.item.active {
  z-index: 1; 
}

.item img {
  width: 100%; 
  height: auto;
}



.prev, .next {o
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


      .slider-container {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.item {
  flex: 0 0 100%;
  height: 100vh; /* Ajusta la altura según necesites */
  background-size: cover;
  background-position: center;
  position: relative;
}

.button {
  position: absolute;
  top: 55%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.prev, .next {
  background: none;
  border: none;
  cursor: pointer;
}

.indicators {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}

